home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PC World 1999 October
/
PCWorld_1999-10_cd1.bin
/
Software
/
Servis
/
X-setup
/
_SETUP.1
/
XQ IE Window Title.xpl
< prev
next >
Wrap
Text File
|
1999-05-22
|
1KB
|
54 lines
"FILE"="Xteq Systems X-Setup Plugin 3.1"
"TYPE"="1"
"COUNT"="1"
"UIPATH"="Internet\Internet Explorer\Appearance"
"NAME"="Window Title"
"LANGUAGE"="VBScript"
"TEXT 1"="Title"
"DESCRIPTION 1"="You can change the title of the Internet Explorer window here."
"DESCRIPTION 2"="To have to original title again, clear the field and press "Apply"."
"AUTHOR"="Xteq Systems"
"COPYRIGHT"="Copyright ⌐ Xteq Systems - All Rights Reserved"
"COMMENT 1"="For more information, go to http://www.xteq.com or write to TeXHeX@gmx.net."
"COMMENT 2"="Version 1.1"
Sub Plugin_Initialize
if RegPathExists("HKLM\Software\Microsoft\Internet Explorer") then
s=RegReadValue("HKLM\Software\Microsoft\Internet Explorer\Main\Window Title")
SetUIElement 1,s
else
Disable
end if
End Sub
Sub Plugin_CheckData(ElementIndex)
End Sub
Sub Plugin_Apply(ElementIndex,ElementSubIndex)
s=GetUIElement(1)
if len(s)=0 then
'If values exists, delete it
s=RegReadValue("HKLM\Software\Microsoft\Internet Explorer\Main\Window Title")
if IsEmpty(s)=false then
Call RegDeleteValue("HKLM\Software\Microsoft\Internet Explorer\Main\Window Title")
end if
else
Call RegWriteValue("HKLM\Software\Microsoft\Internet Explorer\Main\Window Title",s,1)
end if
End Sub
Sub Plugin_Terminate
End Sub